home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 3 / ct-rom iiib.zip / ct-rom iiib / WINDOWS / GRAFISCH / FRACXTR5 / BESSELS.FRM < prev    next >
Text File  |  1993-06-24  |  723b  |  40 lines

  1. BESSEL-1 {
  2.   ;This formula, and BESSEL-2 to BESSEL-4 are based on 
  3.   ;formulas taken from the article on bessels from the
  4.   ;Encyclopedia of Science.
  5.       c = z = pixel:
  6.          z = sin(z) / z * pixel,
  7.       |z| <= 100
  8. }
  9.  
  10. BESSEL-2 {
  11.       c = z = pixel:
  12.          z = cos(z) / z + pixel,
  13.       |z| <= 100
  14. }
  15. BESSEL-3 {
  16.        c = z = pixel:
  17.           z = -cos(z) / z + sin(z) / (z * z) + pixel,
  18.       |z| <= 100
  19. }
  20. BESSEL-4 {
  21.        c = z = pixel:
  22.           z = -sin(z) / z - cos(z) / (z * z) + pixel,
  23.       |z| <= 100
  24. }
  25.  
  26.  
  27.  
  28. Readme {
  29. ; This Fractint .FRM file (c) 1993 by:
  30. ;
  31. ; LRCMIKE@LRC.OLDSCOLLEGE.AB.CA
  32. ;
  33. ; Michael G. Wareman
  34. ; P.O. Box 1856
  35. ; Olds, Alberta, Canada
  36. ; T0M 1P0
  37. ;
  38. }
  39.  
  40.